* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
body {
    background: linear-gradient(135deg, #36d1dc, #5b86e5, #a044ff);
    min-height: 100vh;
    padding: 40px 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.wrapper {
    width: 100%;
    max-width: 800px;
}
h2 {
    text-align: center;
    color: white;
    background: linear-gradient(90deg, #ff6b6b, #f06595, #845ef7);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
form {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
label {
    display: block;
    margin-top: 16px;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}
input, select, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #ddd;
    font-size: 14px;
    transition: 0.2s ease;
}
input:focus,
select:focus,
textarea:focus {
    border-color: #a044ff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(160, 68, 255, 0.15);
}
.button-area {
    margin-top: 25px;
    text-align: right;
}
button {
    background: linear-gradient(90deg, #ff6b6b, #f06595);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
}
button:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #f06595, #845ef7);
}
button:active {
    transform: scale(0.98);
}