﻿
body.login-body {
    height: 70vh;
    background: url('/Content/img/Quiropractica-5.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}



.login-bg-overlay {
    background: rgba(255, 255, 255, 0); 
    height: 70vh; 
    width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
}

.login-container {
    height: 70vh; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    position: relative;
    z-index: 1;
}

.login-row {
    width: 100%;
}

.login-form-card {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.06);
    padding: 2.5rem 2rem 1rem 2rem;
    max-width: 500px;
    max-height:100%;
    width: 100%;
    margin: auto;
    transform: translateY(100px);
}


@media (max-width: 1020px) {
    body.login-body,
    .login-bg-overlay,
    .login-container {
        height: 100vh;
    }

    .login-row {
        min-height: 100vh;
        justify-content: center !important;
    }

    .login-form-card {
        margin: auto;
        transform: none;
    }
}

.login-brand {
    width: 120px;
    margin: 0 auto 1rem auto;
    display: block;
}

.login-title {
    text-align: center;
    margin-bottom: 1rem;
}

    .login-title p {
        margin-bottom: 0;
    }

    .login-title .login-register-link {
        color: #74c25f;
        font-weight: bold;
        margin-left: 0.5rem;
        text-decoration: none !important;
    }

.login-help-row {
    font-size: 1rem;
    justify-content: end;
    color: #585858;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

    .login-help-row a {
        color: #585858;
        text-decoration: none;
    }

.login-submit-btn {
    background: #74c25f;
    border-radius: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    top: 56px;
    color: white;
    width: 50%;
    transition: none; 
    margin-top: 5px;
    cursor: pointer !important;
}

    .login-submit-btn:hover {
        background: #74c25f !important; 
        color: white !important;
        cursor: default; 
    }


.login-error {
    font-size: 0.8rem;
    color: #dc3545; 
    margin-bottom: 0.5rem;
}

.form-label{
    font-size: 0.75rem;
}


.form-control{
    font-size: 0.9rem;
}


.form-select{
    font-size: 0.8rem;
}

.disclaimer-login{
    font-size: 0.8rem;
}

