* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    padding: 20px;
}

.form-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

h2 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

h2 i {
    margin-right: 10px;
    color: #764ba2;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

select:focus, textarea:focus {
    border-color: #764ba2;
    outline: none;
    box-shadow: 0 0 5px rgba(118, 75, 162, 0.3);
}

.radio-group, .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-item, .checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-item label, .checkbox-item label {
    margin-bottom: 0;
    font-weight: normal;
}

input[type="radio"], input[type="checkbox"] {
    accent-color: #764ba2;
    width: 18px;
    height: 18px;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.submit-btn, .cancel-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn {
    background: #764ba2;
    color: white;
}

.cancel-btn {
    background: #f0f0f0;
    color: #333;
}

.submit-btn:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.cancel-btn:hover {
    background: #e4e4e4;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .form-box {
        padding: 20px;
    }
    
    .button-group {
        flex-direction: column;
    }
} 