/* Incluir la fuente Ghotabol */
@font-face {
    font-family: 'Ghotabol';
    src: url('fonts/Ghotabol.ttf') format('truetype'); /* Asegúrate de ajustar la ruta correcta */
    font-weight: normal;
    font-style: normal;
}

body,
html {
    font-family: 'Ghotabol', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.registro {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.registro h1 {
    text-align: center;
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 2rem;
    font-family: 'Ghotabol', Arial, sans-serif;
}

.registro p {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.5;
    font-family: 'Ghotabol', Arial, sans-serif;
}

.form-container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Ghotabol', Arial, sans-serif;
}

.form-container label {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
    font-family: 'Ghotabol', Arial, sans-serif;
}

.form-container input,
.form-container select,
.form-container textarea {
    width: 95%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Ghotabol', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.2);
}

.form-container button {
    padding: 12px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Ghotabol', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.form-container button:hover {
    background-color: #45a049;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    font-family: 'Ghotabol', Arial, sans-serif;
}

.checkbox-container input[type="checkbox"] {
    margin: 0;
    padding: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-container a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.checkbox-container a:hover {
    color: #45a049;
}
