/* Estilo general */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5; /* Escala de gris claro */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Contenedor del formulario */
.form-container {
    background: #ffffff;
    border: 1px solid #ddd; /* Escala de gris oscuro */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
    padding: 20px 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Título */
.form-container h1 {
    font-size: 24px;
    color: #333; /* Gris oscuro */
    margin-bottom: 20px;
}

/* Etiquetas */
form label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555; /* Gris intermedio */
}

/* Inputs */
form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}

/* Inputs de tipo archivo */
form input[type="file"] {
    padding: 6px;
    cursor: pointer;
}

/* Botones */
form button {
    padding: 10px 15px;
    margin: 5px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button[type="submit"] {
    background: #555; /* Gris intermedio */
    color: #fff;
}

form button[type="submit"]:hover {
    background: #333; /* Gris más oscuro */
}

form button[type="reset"] {
    background: #ddd; /* Gris claro */
    color: #333;
}

form button[type="reset"]:hover {
    background: #bbb; /* Gris más intenso */
}

/* Responsividad */
@media (max-width: 480px) {
    .form-container {
        padding: 20px;
        width: 90%;
    }

    form input {
        font-size: 12px;
    }

    form button {
        font-size: 12px;
    }
}
