﻿/* Estilos para las páginas de autenticación */
.auth-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wrapper {
    width: 100%;
    padding: 15px;
}

.auth-container {
    max-width: 600px;
    margin: 0 auto;
}

.auth-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
}

    .auth-box.animate {
        animation: fadeIn 0.6s;
    }

.auth-header {
    text-align: center;
    margin-bottom: 25px;
}

    .auth-header h2 {
        color: #3f51b5;
        font-weight: 600;
    }

.auth-body {
    padding: 0 10px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.form-group {
    margin-bottom: 20px;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.form-control {
    border-left: none;
}

.btn-primary {
    background-color: #3f51b5;
    border-color: #3f51b5;
    padding: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #303f9f;
        border-color: #303f9f;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.login-link, .register-link {
    color: #3f51b5;
    font-weight: 500;
    text-decoration: none;
}

    .login-link:hover, .register-link:hover {
        text-decoration: underline;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos específicos para pantallas pequeñas */
@media (max-width: 576px) {
    .auth-box {
        padding: 20px;
    }
}
