body {
    font-family: 'Inter', sans-serif;
    background: #fff5f5;
    background: linear-gradient(90deg, rgba(255, 245, 245, 1) 0%, rgba(255, 245, 230, 1) 50%, rgba(255, 244, 224, 1) 100%);
    min-height: 100vh;
}

.success-container {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 1rem;
    text-align: center;
}
.footer {
    background-color: #e67e22;
    color: white;
    padding: 1rem;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.input-field {
transition: all 0.3s ease;
}
.input-field:focus {
border-color: #f39c12;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.submit-button {
transition: background-color 0.3s ease;
}
.submit-button:hover {
background-color: #e67e22;
}