﻿.home-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #e9f7ff 0%, #e9fff7 50%, #f7fbff 100%);
    position: relative;
    overflow: hidden;
}

/* Figuras decorativas tipo “medical” */
.home-bg-shape {
    position: absolute;
    opacity: 0.20;
    pointer-events: none;
}

    .home-bg-shape.plus {
        width: 60px;
        height: 60px;
        top: 15%;
        right: 18%;
        border-radius: 12px;
        background: rgba(0, 123, 255, 0.18);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.05), inset 0 0 0 10px rgba(255, 255, 255, 0.30);
    }

    .home-bg-shape.pill {
        width: 90px;
        height: 40px;
        bottom: 12%;
        left: 12%;
        border-radius: 999px;
        background: linear-gradient(90deg, #a0e6ff, #9ff3d1);
    }

    .home-bg-shape.circle {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        border: 3px solid #9fd3ff;
        top: 28%;
        left: 20%;
    }

    .home-bg-shape.arc {
        width: 90px;
        height: 90px;
        border-radius: 80px;
        border: 3px solid rgba(120, 200, 255, 0.6);
        border-top-color: transparent;
        border-left-color: transparent;
        bottom: 18%;
        right: 8%;
        transform: rotate(-15deg);
    }

/* Tarjeta central */
.home-card {
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 2.5rem 2.25rem;
    max-width: 480px;
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlide .8s ease-out forwards;
}

.home-logo-box {
    margin-bottom: 1.5rem;
}

.home-logo {
    max-width: 220px;
    height: auto;
}

.home-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: #333;
}

.home-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.8rem;
}

.home-helper {
    font-size: .9rem;
    color: #9aa2aa;
    margin-top: 1rem;
}

/* Animación Fade + Slide */
@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
