
body {
    font-family: "Inter", sans-serif;
    background-color: #f3f4f6;
    margin: 0;
    padding: 0;
}
.formulario {
    padding: 80px 20px;
    background-color: white;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;

}

.form-container {
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid #eee;
}


.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    text-align: center;
}


.form-desc {
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 14px;
    text-align: center;
}


.form-label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}


.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #f9fafb;
    font-size: 15px;
    color: #111827;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

/* Placeholder */
.form-input::placeholder {
    color: #9ca3af;
}

/* Focus */
.form-input:focus,
.form-select:focus {
    border-color: #111;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}


.form-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(45deg, #000, #333);
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
.form-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #111, #444);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


@media (max-width: 600px) {
    .form-container {
        padding: 25px;
    }

    .form-title {
        font-size: 22px;
    }
}


