﻿/* =========================
   ANIMACIONES
========================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.authentication-card {
    animation: fadeIn 0.8s ease-out;
}

/* =========================
   TARJETAS
========================= */

.card-custom {
    border: none;
    border-radius: 0 !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: #ffffff;
    overflow: hidden;
}

.form-side {
    padding: 50px !important;
    border-left: 6px solid #dc3545;
}

/* =========================
   FORMULARIOS
========================= */

.form-floating > .form-control {
    border-radius: 0 !important;
    border: 2px solid #eee;
    transition: all 0.3s;
}

    .form-floating > .form-control:focus {
        border-color: #dc3545;
        box-shadow: none;
        background-color: #fff9f9;
    }

.form-floating > label {
    padding-left: 15px;
    color: #777;
    font-weight: 500;
}



/* BOTÃ“N PRINCIPAL */
.btn.btn-school-main {
    background-color: #dc3545 !important;
    color: white !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

    .btn.btn-school-main:hover {
        background-color: #a71d2a !important;
        color: white !important;
    }

/* BOTÃ“N SECUNDARIO */
.btn.btn-school-outline {
    background-color: transparent !important;
    color: #666 !important;
    border: 2px solid #ddd !important;
    border-radius: 0 !important;
    padding: 8px 20px;
}

/* =========================
   ESPACIADOS
========================= */

.gap-2-custom {
    gap: 0.5rem !important;
}

/* =========================
   DIVISORES
========================= */

.divider-red {
    width: 50px;
    height: 3px;
    background: #dc3545;
    margin: 15px auto 25px auto;
}

/* =========================
   IMÃGENES
========================= */

.recovery-image {
    max-height: 300px;
    filter: grayscale(20%);
}

/* =========================
   TEXTOS
========================= */

.info-text {
    font-style: italic;
}
