/* Parent Layout */
.login-section {
    padding: 70px 40px 100px;
}

.login-section-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

/* Left / Right split */
.login-left {
    width: 100%;
    max-width: 590px;
}

.login-right {
    position: relative;
    width: 100%;
    max-width: 550px;
}

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

.login-right-details {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px 20px;
}

.login-right-details p {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(42.666656494140625px);
    box-shadow: 0px 5.33px 18.67px 0px rgba(0, 0, 0, 0.15);
    border: 1.33px solid rgba(255, 255, 255, 0.1);
    font-family: 'InterFace Thin', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 36.67px;
    letter-spacing: -0.67px;
    text-align: center;
    color: #FFF;
    padding: 20px;
}

/* --- Typography and Layout Styles --- */
.login-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-title {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 50px;
    letter-spacing: 2px;
    text-align: center;
    vertical-align: middle;
    color: #000;
}

.login-subtitle {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 22.67px;
    text-align: center;
    color: #000;
    padding: 25px 0 40px;
}

/* Inputs */
.login-form input {
    width: 100%;
    max-width: 100%;
    padding: 10px 15px;
    border: 2.67px solid rgba(213, 206, 195, 1);
    background: #FFFFFF;
    height: 64px;
    font-family: "InterFace Thin";
    font-weight: 400;
    font-size: 18.67px;
    color: #717171;
    margin: 0 0 25px;
}

.login-form input.dark-border {
    border-color: rgba(33, 23, 9, 1);
}

/* Forgot password */
.forgot-password {
    display: block;
    width: fit-content;
    margin: 0 0 25px auto;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.67px;
    text-align: center;
    color: rgba(92, 92, 92, 1);
    text-decoration: underline;
}

/* Login Button */
.login-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 49px;
    border: 1px solid rgba(26, 38, 33, 1);
    background: none;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 14.14px;
    line-height: 25.5px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
}

/* Divider line */
.divider {
    position: relative;
    width: 110%;
    height: 1.33px;
    background: rgba(142, 142, 142, 1);
    margin: 95px 0 95px -5%;
}

/* Footer text */
.no-account {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 21.47px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    padding: 0 0 40px;
}

.login-form {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sign-in-link {
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(26, 38, 33, 1);
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 14.14px;
    line-height: 25.5px;
    text-align: center;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 1);
}

/* Checkbox Container */
.form-check {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 40px;
}

/* Checkbox Style */
.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    accent-color: #000;
    /* for modern browsers */
    cursor: pointer;
    margin: 0;
}

/* Label Text */
.form-check label {
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(75, 75, 75, 0.75);
}

/* Links inside the label */
.form-check label a {
    color: rgba(75, 75, 75, 0.75);
    /* text-decoration: underline; */
}

/* Experience Footer Section */
.experience-section-v4 {
    display: none;
}

#login-message {
    display: none;
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    width: fit-content;
    padding: 10px;
    border-radius: 100px;
    margin: auto;
    color: #FFF;
    z-index: 1;
}

#register-message {
    display: none;
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    font-family: 'InterFace', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    width: fit-content;
    padding: 10px;
    border-radius: 100px;
    margin: auto;
    color: #FFF;
    z-index: 1;
}

@media (max-width: 1440px) {
    .login-title {
        font-size: 44px;
    }
    
    .login-right-details p {
        font-size: 23px;
        line-height: 34px;
    }
}

@media (max-width: 1024px) {
    .login-section {
        padding: 70px 25px 80px;
    }

    .login-title {
        font-size: 38px;
        letter-spacing:1px;
    }

    .no-account {
        letter-spacing: 0.5px;
    }

    .login-right-details p {
        font-size: 22px;
        line-height: 32px;
    }

    .login-section-container {
        gap: 40px;
    }

    .login-right {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .login-section {
        padding: 60px 25px;
    }

    .login-title {
        font-size: 32px;
        letter-spacing: 0.67px;
    }

    .login-right-details p {
        font-size: 20px;
        line-height: 28px;
    }

    .login-section-container {
        flex-direction: column;
    }

    .login-left {
        max-width: 100%;
    }

    .divider {
        width: 100%;
        margin: 95px 0;
    }

    .login-section-container {
        gap: 30px;
    }

    .login-right {
        height: 475px;
    }

    .no-account {
        letter-spacing: 0;
    }
}