/* Importando fuente */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reset global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Evitar el desplazamiento */
html, body {
    height: 100%;
    overflow: hidden; /* Elimina la barra desplazadora global */
    display: flex;
    flex-direction: column;
    background: linear-gradient(to right, #2E4BA0, #A94FBF);
}

/* Barra Superior */
.navbar {
    background-color: #313d63;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1.2px;
}

/* Contenedor Principal */
/* Estilos principales del contenedor */
.wrapper {
    margin: auto;
    width: 350px;
    padding: 30px;
    background: #ecf0f3;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #0f7d98, -13px -13px 20px #0f7d98;
}


/* Pasos del formulario */
.step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.step.active {
    display: block;
}

/* Títulos */
.step h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #333;
}

/* Campos del formulario */
.form-field {
    margin-bottom: 15px;
}

.form-field input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: none;
    outline: none;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: inset 4px 4px 6px #d1d9e6, inset -4px -4px 6px #ffffff;
}

/* Botones */
.btn {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 25px;
    background-color: #03A9F4;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    background-color: #0288D1;
}

/* Animación */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Logo */
.logo {
    width: 80px;
    margin: 0 auto 20px auto;
}

.logo img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 0px 3px #5f5f5f, 0px 0px 0px 5px #ecf0f3, 8px 8px 15px #a7aaa7, -8px -8px 15px #fff;
}

/* Título */
.name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.3px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

/* Campos del Formulario */
.form-field {
    margin-bottom: 20px;
}

.form-field input {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    background: none;
    font-size: 1.2rem;
    color: #666;
    border-radius: 8px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
}

.form-field input:focus {
    border: 1px solid #03A9F4;
}

/* Botón de Registro */
.btn {
    width: 100%;
    height: 45px;
    background-color: #03A9F4;
    color: #fff;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.btn:hover {
    background-color: #039BE5;
}

/* Enlace de Inicio de Sesión */
.text-center a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #03A9F4;
}

.text-center a:hover {
    color: #039BE5;
}

/* Footer */
.footer {
    text-align: center;
    background-color: #313d63;
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
    margin-top: auto;
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.1);
}

/* Media Queries para dispositivos pequeños */
@media (max-width: 768px) {
    .wrapper {
        width: 90%;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .wrapper {
        width: 95%;
        padding: 20px 15px;
    }

    .form-field input {
        font-size: 1rem;
        padding: 8px;
    }

    .btn {
        font-size: 1rem;
        height: 40px;
    }

    .name {
        font-size: 1.2rem;
    }
}


.navbar {
    background: linear-gradient(to right, #2E4BA0, #A94FBF);
    color: #ffffff; /* Asegura que el texto sea blanco */
  }