/* Codigo CSS para el registro de usuario */
body {
    background-color: #f4f7fc;
    font-family: Arial, sans-serif;
}

.registro-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.registro-container img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.registro-container hr {
    border: 1px solid #007bff;
    margin-bottom: 15px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.form-control {
    height: 45px;
    font-size: 16px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.form-control::placeholder {
    color: #aaa;
}

.btn-registro {
    width: 100%;
    background-color: #007bff;
    border: none;
    font-size: 16px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s;
}

.btn-registro:hover {
    background-color: #0056b3;
}

.btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.link-group {
    margin-top: 15px;
    text-align: left;
    font-size: 14px;
}

.link-group a {
    color: #007bff;
    text-decoration: none;
    margin-right: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.link-group a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.turnstile-container {
    text-align: left;
}

.small-note {
    font-size: 12px;
    color: #555;
    margin-top: -5px;
    margin-bottom: 15px;
}

/* Espaciado entre los campos del formulario */
.mb-3 {
    margin-bottom: 20px;
}
