/* Vendor Registration Styles */
.vendor-registration-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 120px; /* Add top margin to account for header height */
    margin-bottom: 40px; /* Add bottom margin for spacing */
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.form-row {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input[type="file"] {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #4a90e2;
    outline: none;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background-color: #4a90e2;
    color: white;
}

.btn-primary:hover {
    background-color: #3a7bc8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .vendor-registration-container {
        padding: 20px;
        margin: 80px 20px 40px; /* Adjusted spacing for mobile */
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .vendor-registration-container {
        margin-top: 70px; /* Further reduced for very small screens */
        padding: 15px;
    }
    
    .page-title {
        font-size: 22px;
    }
    
    .form-section h2 {
        font-size: 18px;
    }
} 