/* Login page specific styles */
@font-face {
    font-family: 'Dream Avenue';
    src: url('../font/DreamAvenue.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    display:block !important;
}

.main {
    padding-top: 0px !important;
    margin-top: 0px !important;
}

.container {
    max-width: 65% !important;
}

footer {
    padding: 0px 0 0px !important;
    margin-top: 0px;
    flex-shrink: 0;
}

/* Two columns layout */
.two-column-layout {
    display: flex;
    min-height: 100vh;
}

.login-column {
    width: 50%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
}

.right-image {
    width: 50%;
    overflow: hidden;
}

.right-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* Logo */
.logo a {
    font-family: 'Playfair Display', serif !important;
    font-size: 30px;
    font-size: 3.5vw;
    color: black;
    text-decoration: none;
}

/* Typography for login page */
.login h1 {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: bold;
    text-align: center;
    color: black;
    font-size: 3rem; 
}

.login h3 {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: lighter;
    color: black;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Form elements */
.login-form .form-control {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 1.2rem;
    padding: 15px;
}

.login-form .form-control::placeholder {
    color: #8F8F8F;
    font-size: 1.2rem;
}

.login-form .form-group {
    width: 100%;
    box-sizing: border-box;
}

.login-form input.form-control,
.login-form textarea.form-control {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

/* Make sure the form container has proper width */
.login-form-container {
    width: 100%;
    padding: 0;
}

.login-form .checkbox label {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.login-form .checkbox input {
    margin-right: 10px;
}

/* Login form utils */
.login-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.forget-password {
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* Login button */
.login-button {
    width: 100%;
    background-color: var(--color-primary);
    color: white;
    padding: 12px 0;
    font-size: 1rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: var(--color-primary-dark);
}

.login-button:disabled {
    background-color: #cccccc !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.login-button:disabled:hover {
    background-color: #cccccc !important;
}

/* Google sign-in */
.google-signin-wrapper {
    width: 100%;
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

/* Sign up section */
.signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 1rem;
    font-family: 'Darker Grotesque', sans-serif;
}

.signup-text {
    color: #8f8f8f;
    font-size: 1rem;
}

.signup-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

.signup-link:hover {
    text-decoration: underline;
}

.captcha-wrapper{
    padding: 15px;
    padding-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive */

@media (max-width: 1024px) {
    .logo a {
        font-size: 30px;
        font-size: 3.5vw;
    }
}

@media (max-width: 820px) {
    .two-column-layout {
        flex-direction: column;
        min-height: 100vh;
        height: 100%;
    }
    
    .login-column {
        width: 100%;
        min-height: 100vh;
        height: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .right-image {
        display: none;
        height: 0;
        width: 0;
    }
    
    .container {
        max-width: 100% !important;
        padding: 10px;
    }
    
    .logo a {
        font-size: 8vw;
    }
    
    .login h1 {
        font-size: 2.5rem;
    }
    
    .login h3 {
        font-size: 1.2rem;
    }
}

