@import url("./base.css");


.main-content {
   
    min-height: 100vh;
    display: flex;
    justify-content: center; 
    align-items: center;   
    padding: 2rem;
    
}


.content-wrapper {
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-title {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 2.2rem;
}

.subtitle {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; 
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
}


.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}


.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6; 
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.contact-form textarea {
    resize: vertical; 
    min-height: 120px;
}


.btn-enviar {
    background-color: #111; 
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    margin-top: 1rem;
}

.btn-enviar:hover {
    background-color: #333;
}

.btn-enviar:active {
    transform: scale(0.98);
}