@font-face {
    font-family: 'WF Visual Sans';
    src: url('./font/WFVisualSansVF.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Overall section with a white background */
.login-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

/* White container that holds the login content */
.login-container {
    width: 100%;
    max-width: 400px;
    background-color: #fff; /* white container */
    padding: 30px;
    margin: 0 auto;
}

/* Left aligned title with adjusted margins */
.login-title {
    font-size: 32px;
    margin: 0 0 0px;
    text-align: center;
}

/* Left aligned description with adjusted margins */
.login-description {
    font-size: 18px;
    margin: 0 0 20px;
    text-align: left;
}

/* Left aligned labels with reduced bottom margin */
.login-container label {
    display: block;
    margin: 2px 0;  /* Reduced margin from 5px to 2px */
    text-align: left;
    font-size: 14px;
}

/* Input fields: full width within container */
.login-container input[type="email"],
.login-container input[type="password"] {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 0px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* "Forgot My Password" link styling */
.login-forgot {
    font-size: 12px;
    text-align: right;
    margin-top: 5px;
    cursor: pointer;
    color: #007BFF;
}

/* Login button styling */
.login-button1 {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 0px;
}

.login-button1:hover {
    background-color: #0056b3;
}

/* Common box sizing and uniform height for inputs and button */
.login-container input[type="email"],
.login-container input[type="password"],
.login-button {
    box-sizing: border-box;
    height: 42px; /* Fixed height for consistency */
}

/* Already have an account text styling */
.login-account {
    text-align: center;
    font-size: 12px;
    margin-top: 5px;
}
