    /* Tus estilos exactos intactos */
    .login-container {
        max-width: 450px;
        margin: 60px auto;
        background: white;
        padding: 40px;
        border: 3px solid #000;
        border-radius: 8px;
        box-shadow: 6px 6px 0px #000;
        text-align: center;
    }

    .form-group {
        margin-bottom: 25px;
        text-align: left;
    }

        .form-group label {
            display: block;
            font-family: 'Oswald', sans-serif;
            font-size: 1.2em;
            margin-bottom: 8px;
            color: #333;
        }

    .form-control {
        width: 100%;
        padding: 12px;
        font-size: 1em;
        font-family: 'Inter', sans-serif;
        border: 2px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
        transition: border-color 0.3s;
    }

        .form-control:focus {
            border-color: #CC0000;
            outline: none;
        }

    .btn-login {
        width: 100%;
        margin-top: 10px;
        cursor: pointer;
    }

    .forgot-password {
        display: block;
        margin-top: 15px;
        font-size: 0.9em;
        color: #666;
        text-decoration: none;
    }

        .forgot-password:hover {
            color: #CC0000;
            text-decoration: underline;
        }

    .login-title {
        color: #CC0000;
        font-size: 2.5em;
        margin-bottom: 5px;
    }

    .login-copy {
        color: #555;
        margin-bottom: 30px;
    }

    .login-error {
        background-color: #ffeeee;
        color: #CC0000;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #CC0000;
        border-radius: 4px;
        font-weight: bold;
    }

    .validation-summary-valid {
        display: none;
    }

    .field-validation-error {
        display: block;
        margin-top: 6px;
        color: #CC0000;
        font-size: 0.9rem;
    }

    .auth-secondary-form {
        margin-top: 20px;
    }

    .auth-link-button {
        border: 0;
        background: transparent;
        color: #666;
        cursor: pointer;
        text-decoration: underline;
    }

    .auth-support-link {
        display: inline-block;
        text-decoration: none;
    }
