/* Wholesale Registration Form Styles */

.wholesale-registration-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
}

.wholesale-registration-wrapper {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    text-align: center;
}

.form-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 0 0 30px 0;
}

.wholesale-registration-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    color: #dc3545;
    font-weight: bold;
}

.form-control {
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-control[type="file"] {
    padding: 8px 0;
    border: 2px dashed #d0d0d0;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-control[type="file"]:hover {
    border-color: #0066cc;
    background-color: #f0f7ff;
}

.form-control[type="file"]:focus {
    border-color: #0066cc;
    background-color: #f0f7ff;
    box-shadow: none;
}

.field-description {
    font-size: 13px;
    color: #666;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.form-text {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
    display: block;
}

.btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0052a3;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.btn-primary:active {
    background-color: #003d7a;
}

.wholesale-registration-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    padding: 20px;
    color: #155724;
}

.wholesale-registration-success h3 {
    margin: 0 0 10px 0;
    color: #155724;
}

.wholesale-registration-success p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .wholesale-registration-wrapper {
        padding: 20px;
    }

    .form-title {
        font-size: 24px;
    }

    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn {
        width: 100%;
    }
}
