.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.heading-section {
    background-color: #581c1c;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.heading-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.heading-section p {
    font-size: 1.1em;
    opacity: 0.9;
}

.modern-form {
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.modern-form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.modern-form .column {
    flex: 1;
}

.modern-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.modern-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 16px;
}

.modern-form input:focus {
    border-color: #581c1c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(88,28,28,0.1);
}

.submit-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.button-submit {
    background-color: #581c1c;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.button-submit:hover {
    background-color: #6f2424;
}

.button-outline {
    color: #581c1c;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #581c1c;
    border-radius: 4px;
    transition: all 0.3s;
}

.button-outline:hover {
    background-color: #581c1c;
    color: white;
}

/* Error message styling */
.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
}

/* Responsive design */
@media (max-width: 768px) {
    .modern-form .row {
        flex-direction: column;
        gap: 0;
    }
    
    .content {
        padding: 10px;
    }
} 