/* Add your custom styles here - using the design you provided */
:root {
    --primary: #FF69B4;
    --primary-dark: #e0529c;
    --secondary: #4A154B;
    --accent: #FFD1DC;
    --light: #FFF9FB;
    --dark: #2D0A2F;
    --text: #333333;
    --success: #25D366;
}

.citywheel-registration-container {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.benefits-sidebar {
    flex: 0 0 300px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
    align-self: flex-start;
    position: sticky;
    top: 20px;
}

.benefits-sidebar h2 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-sidebar h2 i {
    background: var(--accent);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 35px;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
}

.benefit-list h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.testimonial {
    background: var(--light);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    position: relative;
}

.testimonial:before {
    content: """;
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 80px;
    color: var(--accent);
    font-family: serif;
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.driver-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.driver-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
}

.registration-form {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
    position: relative;
    overflow: hidden;
}

.registration-form:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 8px 0 0 8px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.form-header h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.form-header p {
    color: var(--text);
    max-width: 600px;
    margin: 20px auto 0;
}

.form-step {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--accent);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-icon {
    background: var(--accent);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.step-header h3 {
    font-size: 22px;
    color: var(--secondary);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
    outline: none;
}

.upload-area {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: var(--primary);
    background: var(--light);
}

.upload-area i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.file-info {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

.terms-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .citywheel-registration-container {
        flex-direction: column;
    }
    
    .benefits-sidebar {
        position: relative;
        top: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .registration-form {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 30px;
    }
}