/* Estilos del formulario de registro */
.registro {
    max-width: 400px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.registro h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #003087;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.btn-cta1 {
    width: 100%;
    padding: 10px;
    background-color: #bfbcb2;
    color: #003087;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 10px;
}

.btn-cta {
    width: 100%;
    padding: 10px;
    background-color: #ffc107;
    color: #003087;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 10px;
}

.btn-cta:hover {
    background-color: #ffcd38;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .registro {
        width: 90%;
    }
}


