@charset "UTF-8";
/* CSS Document 			*/
/* Polaris Login Styles 	*/

html, body { 
    height: 100%; 
    margin: 0; 
    padding: 0; 
}
body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #101c29 url("../_img/login/bg.png") no-repeat center center/cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: 100vw;
    height: 100vh;
}
#nim_index_main {
    height: 100%;
}
#nim_login_container {
    height: 100%;
}
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.top-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    margin-bottom: 32px;
}
.coming-soon {
    font-size: 3rem;
    font-weight: 700;
    color: #6ec1f6;
    letter-spacing: 0.01em;
    margin-top: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.logo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 2px 32px rgba(0,0,0,0.18);
}
.headline {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 0.5rem;
}
.headline h1 {
    font-size: 5.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.01em;
    color: #fff;
    line-height: 1.05;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.headline h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0.5rem 0 2.5rem 0;
    color: #e6f0fa;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.desc-box {
    background: #2172a3;
    border-radius: 14px;
    padding: 2.2rem 2.5rem;
    margin: 2.5rem 0 0 0;
    max-width: 700px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 24px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.desc-box span {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: center;
    display: block;
}
.desc-box .desc-gap {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}
#nim_login_block {
    margin: 100px auto;
    z-index: 5;
    overflow: hidden;
}
#nim_login_form{
    position: relative;
    float:left;
    margin-top: 6px;
    margin-left: 0;
}
.nim_login_button{
    width: 330px;
    height: 60px;
    background-color: #162d3d;
    color: #eee;
    font-size: 26px;
    margin: 32px;
    border: 1px solid #2c5e74;
    border-radius: 8px;
    box-shadow: 0 1px 31px -4px rgba(24, 103, 119, 0.36);
}
.nim_login_button:hover {
    cursor: pointer;
    background-color: #2172a3;
    box-shadow: 0 1px 31px -4px rgb(30, 130, 150, 0.36);
}
#nim_login_block .nim_login_error{
    padding: 12px 0 0 2px;
    font-size:16px;
    line-height: 1.5em;
    clear: both;
    font-family: latoregular;
}
#nim_login_footer_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center children horizontally */
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 16px;
}
#nim_login_footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem; /* Space between footer items */
    margin-top: 0.5rem;
}
.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}
.nim_footer_link a{
    cursor: pointer;
    color: #ccc;
    margin: 0 0.5rem;
    text-decoration: none;
    font-size: 14px;
}
.nim_footer_link a:hover {
    color: #6CF;
}

@media (max-width: 900px) {
    .main-content { max-width: 98vw; }
    .headline h1 { font-size: 2.5rem; }
    .headline h2 { font-size: 1.2rem; }
    .desc-box { padding: 1.2rem 1rem; font-size: 1rem; }
    .logo img { width: 72px; height: 72px; }
    .coming-soon { font-size: 1.3rem; }
    .logo { margin-right: 12px; }
    .top-row { margin-top: 18px; margin-bottom: 18px; }
    #nim_login_footer {
        flex-direction: column;
        gap: 0.5rem;
    }
}
