/* General */
body {
    background-color: #141f25; /* Azul Optica's Gavy */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

body{
    font-family: 'Montserrat', sans-serif; /* <--- Añadido */
    -webkit-font-smoothing: antialiased;
}


.register-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.register-card {
    background: #141f25;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    text-align: center;
}

/* Títulos */
h2 {
     font-family: 'Poppins', sans-serif;
    font-size: 50px;
    color: #358cff;
    margin-bottom: 5px;
    font-weight: 800;
}

.subtitle {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 25px;
}

/* Inputs */
.input-box {
    text-align: left;
    margin-bottom: 15px;
}

.input-box label {
     font-family: 'Poppins', sans-serif;
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 25px;
}

.input-box input {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 10px;
    box-sizing: border-box;
    transition: 0.3s;
}

.input-box input:focus {
    outline: none;
    border-color: #1976D2;
    background-color: #f0f7ff;
}

/* Botón Estilo Optica's Gavy */
.btn-register {
     font-family: 'Monserrat', sans-serif;
    width: 100%;
    background-color: #358cff;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 30px; /* Redondeado como el de tu imagen */
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-register:hover {
    background-color: #1565C0;
    transform: translateY(-2px);
}

/* Footer del registro */
.register-footer {
    margin-top: 25px;
    font-size: 16px;
    color: #ffffff;
}

.link-login {
    color: #1976D2;
    text-decoration: none;
    font-weight: 700;
    display: block;
    margin-top: 5px;
    font-size: 16px;
}

.link-back {
    display: inline-block;
    margin-top: 15px;
    color: #fffefe;
    text-decoration: none;
    font-size: 16px;
}

.link-login:hover, .link-back:hover {
    text-decoration: underline;
}