@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

body, html {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.auth-container {
    display: flex;
    height: 100vh;
}

.auth-left {
    flex: 1;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.auth-left img.logo {
    height: 50px;
    margin-bottom: 2rem;
}

.auth-form-container {
    width: 100%;
    max-width: 400px;
}

.auth-form-container h2 {
    margin-bottom: 1.5rem;
}

.auth-form-container form {
    display: flex;
    flex-direction: column;
}

.auth-form-container form input {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.auth-form-container form button {
    background-color: #1C4532;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
}

.auth-form-container label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: #718096; /* soft gray */
    font-weight: 500;
}

.auth-form-container input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #CBD5E0; /* border gray */
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    color: #1A202C; /* optional: darker text color */
}

.auth-form-container input::placeholder {
    color: #A0AEC0; /* hint text color */
}


.auth-right {
    flex: 1;
    background-color: #1D924A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-right img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.errorlist {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
    color: #E53E3E; /* red */
    font-size: 0.9rem;
}

.errorlist li {
    margin-bottom: 0.25rem;
}

.auth-form-container input.error {
    border-color: #E53E3E;
    background-color: #FFF5F5;
}


@media (max-width: 1024px) {
    .auth-right {
        display: none;
    }

    .auth-left {
        flex: 1 1 100%;
        width: 100%;
    }
}

#cta-img {
  cursor: pointer;
  transition: transform 0.2s;
}

#cta-img:hover {
  transform: scale(1.02);
}

.auth-right iframe {
  min-height: 400px;
  width: calc(100% - 3rem)
}