﻿
@font-face {
    font-family: 'Noto Sans Variable';
    src: url('/fonts/NotoSans/NotoSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 50% 100%;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans Variable';
    src: url('/fonts/NotoSans/NotoSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 50% 100%;
    font-style: italic;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Noto Sans Variable', sans-serif;
}

.login-container {
    display: flex;
    height: 100vh;
}

.left-panel {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: #fff;
}

.form-container {
    max-width: 400px;
    width: 100%;
}

.form-container h1 {
    transform: translateY(-110%);
    width: 448px;
    height: 125px;
    color: #0033A0;
    font-weight: 600;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: 0%;
    z-index: 2;
}

#signupForm h1,
#resetPasswordForm h1,
#divCreateNewPasswordForm h1{
    transform: none;
    width: auto;
    height: auto;
    font-size: 44px; /* Smaller font for single-line */
    line-height: normal;
    white-space: nowrap; /* Prevent line break */
    color: #0033A0;
    font-weight: 600;
    margin-bottom: 20px;
}


label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #e7efff;
}

.remember-forgot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.forgot {
    font-size: 12px;
    color: #888888;
    text-align: right;
}

.forgot a {
    color: #888888;
    text-decoration: none;
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
   /* font-weight: 600;*/
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.login-btn {
    background-color: #FFB81C;
    color: #333333;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    height: 48px;
}
.login-btn:hover {
    background-color: #e0a800; /* slightly darker yellow for hover */
    color: #333333; /* keep the text color same */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* optional subtle shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.signup {
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #888888;
}

    .signup a {
        color: #0033A0;
        text-decoration: none;
        font-weight: 600;
    }

hr {
    border: none;
    border-top: 1px solid #888888;
    margin: 20px 0;
}

.iom-btn {
    background-color: #0033A0;
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    height:48px;
}
.iom-btn:hover {
    color: #FFFFFF;
    background-color: #00257a; /* optional darker shade for hover */
}

.right-panel {
    flex: 1;
    background: url('/images/login_background.jpg') no-repeat center center;
    background-size: cover;
}
