* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.left-section {
    flex: 1;
    padding: 40px;
    background: #2c3e50;
    color: white;
}

.left-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.left-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.info {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
}

.info h3 {
    margin-bottom: 15px;
}

.info ul {
    list-style: circle;
    padding-left: 20px;
}

.info li {
    margin: 10px 0;
}

.right-section {
    flex: 2;
    padding: 40px;
}

.form-group {
    display: grid;
    gap: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

input:hover, select:hover, textarea:hover {
    border-color: #2c3e50;
    box-shadow: 0 0 10px rgba(44,62,80,0.2);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52,152,219,0.3);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

button {
    background: #2c3e50;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52,152,219,0.4);
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}
.success-box {
    margin-top: 20px;
    padding: 20px;
    background: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: 8px;
    text-align: center;
}

.success-box p {
    color: #155724;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.success-box button {
    background: #28a745;
    padding: 10px 20px;
    font-size: 1rem;
}

.success-box button:hover {
    background: #218838;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}