.Formulario {
    width: 400px;
    margin: 40% auto auto auto;
    padding: 10px;
    background-color: yellow;
    border-radius: 20px;
    margin: 20% auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

/* Oculta el icono de calendario en Firefox */
input[type="date"] {
    -moz-appearance: textfield;
}

.calendar-button {
    position: fixed;
    top: 940px;
    right: 400px;
    width: 100px;
    height: 50px;
    background-color: #388e3cdc;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.submit {
    width: 100%;
    padding: 10px;
    background-color: #388e3c;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.submit:hover {
    background-color: #2e7d32;
}

.Formulario h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.name-group {
    display: flex;
    justify-content: space-between;
}

.name-group .form-group {
    width: 48%;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}




.calendar-button:hover {
    background-color: #45a049;
}

.submit {
    background-color: #008000 !important;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}

.submit:hover {
    background-color: #013f01 !important;
}

@media (min-width: 1200px) {
    .Formulario {
        margin: 20px auto auto auto;
    }
}