﻿/* Entrada animada */
.animated-entry {
    animation: fadeSlideIn 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.gradient {
    background: linear-gradient(135deg, #e6f3ef, #76c7a2);
}

.title {
    font-family: "Roboto Slab", serif;
    font-style: normal;
    font-weight: bold;
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación del encabezado */
.animated-header h2 {
    animation: zoomIn 0.6s ease-out;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Efecto en inputs */
.input-animated:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.3);
    transition: box-shadow 0.3s ease;
}

/* Botón con glow al pasar el mouse */          
.btn-glow {
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

    .btn-glow:hover {
        box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
        transform: translateY(-2px);
    }
