#resultado {
    min-height: 100vh;
    padding: 20px 0;
}
.contenedor-form{
    max-width: 600px;
    margin: auto;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
}
.header-form {
    background: linear-gradient(to right, var(--primary-color), #000050);
    color: #fff;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 8px;
}
.logo-contenedor-form{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.logo-form {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
}
.logo-form img {
    max-width: 100%;
    max-height: 100%;
}
.escuela-info-form h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 300;
}
.escuela-info-form p {
    margin: 2px 0;
    font-size: 14px;
}
.formulario-form {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}
.formulario-form h2 {
    margin: 0 0 15px;
    font-size: 20px;
    color: var(--primary-color);
}
.formulario-form input {
    width: auto;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.formulario-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.formulario-form button {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
.formulario-form button:hover {
    background-color: #000050;
}
.footer-form {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: var(--primary-color);
    position: relative;
}


@media (max-width: 380px) {
    .logo-contenedor-form {
        flex-direction: column;
        align-items: flex-start;
    }
}
