/* Definir la fuente Gotham-Book */
@font-face {
    font-family: 'Gotham-Book';
    src: url('Gotham-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Definir la fuente Gotham-Bold */
@font-face {
    font-family: 'Gotham-Bold';
    src: url('Gotham-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Gotham-Book', sans-serif; /* Usar Gotham-Book para el cuerpo */
    background-color: #004c4e;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Gotham-Book', sans-serif; /* Usar Gotham-Book para el h1 */
    font-size: 24px; /* Ajustar el tamaño según sea necesario */
}

.full-width-img {
    width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.logo {
    width: 300px;
    margin-top: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

input, button {
    margin: 10px 0;
    padding: 10px;
    width: 80%;
    max-width: 400px;
    border: none;
    border-radius: 5px;
    font-family: 'Gotham-Book', sans-serif; /* Usar Gotham-Book para los inputs */
    font-size: 14px; /* Tamaño de fuente */
}

button {
    background-color: #a6561e;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Gotham-Bold', sans-serif; /* Usar Gotham-Bold para el botón */
}

button:hover {
    background-color: #8a4a1a;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #003333;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Gotham-Bold', sans-serif; /* Usar Gotham-Bold para el footer */
}

footer p {
    margin: 0;
    display: inline-block;
}

footer p:not(:last-child)::after {
    content: " | ";
    margin: 0 5px;
}

input::placeholder {
    font-family: 'Gotham-Book', sans-serif; /* Usar Gotham-Book para el placeholder */
    color: #ccc; /* Color del placeholder */
}

.mensaje {
    text-align: center;
}

/* Estilos generales para main */
main {
    margin-top: 0; /* Valor predeterminado para dispositivos móviles */
}

/* Media query para pantallas grandes (computadoras, laptops, etc.) */
@media screen and (min-width: 768px) {
    main {
        margin-top: -200px; /* Aplicar margen negativo solo en pantallas grandes */
    }
}

