/* Reset de algunos estilos comunes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main-container {
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Animación al hacer hover */
.main-container:hover {
    transform: scale(1.02);
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.logo {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.logo-img {
    display: block;
    border: 0;
    outline: none;
    text-decoration: none;
    -ms-interpolation-mode: bicubic;
    height: 120px;
}

.logo-text {
    margin: 0;
    font-size: 16px;
    color: #0b5394;
}

.welcome-message {
    margin-bottom: 20px;
    text-align: center;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.form-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

/* Efectos en los campos de entrada */
.form-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Cambio de color y sombra al hacer focus */
.form-input:focus {
    border-color: #0b5394;
    box-shadow: 0 0 8px rgba(11, 83, 148, 0.6);
}

.form-label {
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.form-checkbox-label {
    font-size: 16px;
    color: #333;
    display: inline-block;
    margin-bottom: 8px;
}

.form-checkbox {
    vertical-align: middle;
    margin-left: 10px;
    width: 20px;
    height: 20px;
}

.form-submit {
    text-align: center;
}

/* Estilos del botón con efectos */
.form-button {
    background-color: #0b5394;
    color: white;
    font-size: 16px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Efecto de hover en el botón */
.form-button:hover {
    background-color: #084f74;
    transform: scale(1.05);
}

.social-media {
    background-color: #032f6e ;
    padding: 20px;
    text-align: center;
}

.social-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
}

.social-icons {
    text-align: center;
    margin-top: 10px;
    background-color: #ffffffec;
    padding: 5px;
    border-radius: 8px;
}

.social-icon {
    margin: 0 10px;
    text-decoration: none;
}

.social-icon img {
    width: 32px;
    transition: transform 0.3s ease;
}

/* Efecto hover para los iconos de redes sociales */
.social-icon:hover img {
    transform: scale(1.2);
}
