﻿/* Estilos para el registro */
.programa-container {
    height: 100vh;
}

.bg-section {
    z-index: 1;
}

.container-main {
    z-index: 10;
    min-height: 100vh;
}

.logo-programa {
    max-width: min(70vw, 400px);
}

.card-paso {
    background: linear-gradient(135deg, #0891b2, #0284c7);
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card-paso:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 40px rgba(8, 145, 178, 0.4);
    }

.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.step-badge {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: #0891b2;
        box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
    }

.btn-registro {
    background: linear-gradient(135deg, #059669, #047857);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

    .btn-registro:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-2 {
        font-size: 2.5rem !important;
    }

    .fs-1 {
        font-size: 1.8rem !important;
    }

    .logo-programa {
        max-width: 90vw;
    }
}

@media (max-width: 480px) {
    .programa-container {
        padding: 20px 0;
    }

    .display-2 {
        font-size: 2rem !important;
    }

    .fs-1 {
        font-size: 1.5rem !important;
    }

    .card-header h5 {
        width: 100%;
    }

    .step-badge {
        display: block;
        width: fit-content;
        margin-bottom: 0.5rem;
    }
}

.swal-wide {
    width: 650px !important;
}

.swal2-html-container {
    text-align: left !important;
}

.alert {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 0;
}

.alert-info {
    background-color: #d1ecf1;
    border: 1px solid #b8daff;
    color: #0c5460;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}