@font-face {
    font-family: 'Gilam';
    src: url('fonts/GilamHeavy.otf') format('truetype');
    font-weight: 900; /* Heavy */
    font-style: normal;
}

@font-face {
    font-family: 'Gilam';
    src: url('fonts/GilamBold.otf') format('truetype');
    font-weight: bold; /* Bold */
    font-style: normal;
}

@font-face {
    font-family: 'Gilam';
    src: url('fonts/GilamBook.otf') format('truetype');
    font-weight: normal; /* Book */
    font-style: normal;
}
body{
    font-family: 'Gilam', sans-serif;
}

body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 10px;
}
.form-container {
    background-color: #e64a8a;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
h2, h3 {
    text-align: center;
}
label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}
input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
}
button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 20px auto;
}
button:hover {
    background-color: #0056b3;
}

/* Diseño Responsivo */
@media (max-width: 600px) {
    .form-container {
        width: 100%;
        padding: 15px;
    }
    input, select, textarea {
        font-size: 16px;
        padding: 10px;
    }
    button {
        font-size: 16px;
        padding: 12px;
    }
}