:root {
    --primary-color: #0d6efd;
    --glass-bg: rgba(255, 255, 255, 0.95);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    min-height: 100vh;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.register-card {
    max-width: 1000px;
    width: 100%;
    background: var(--glass-bg);
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

/* Lado de la Imagen */
.image-side {
    position: relative;
    background: url('/assets/img/png/hero1.jpg') center/cover;
    min-height: 400px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(10, 50, 120, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 40px;
    text-align: center;
}

/* Formulario */
.form-side {
    padding: 40px;
}

.form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
}

.form-control:focus {
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.btn-step {
    padding: 12px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
}

/* Animaciones de Pasos */
.step-content {
    animation: slideIn 0.4s ease-out;
}


.input-group>.is-invalid~.invalid-feedback {
    display: block;
}


.invalid-feedback {
    margin-top: 0.25rem;
    font-size: 0.875em;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toggle-password {
    cursor: pointer;
    border-left: none;
    background-color: #f9f9f9;
}