
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    min-height: 100vh;
}

.container {
    background: white;
    border-radius: 15px;
    padding: 30px;
}

h1 {
    color: #4a5568;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #4a5568;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Updated button styles for proper centering */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    width: 50%;
    min-width: 200px; /* Ensure minimum width on small screens */
    transition: transform 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.submit-btn.success {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.status.success {
    background-color: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.status.error {
    background-color: #fed7d7;
    color: #822727;
    border: 1px solid #fc8181;
}

