/**
 * Business Registration Form Styles
 */

#business-registration-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.brap-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.brap-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.brap-form-field {
    margin-bottom: 20px;
}

.brap-form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.brap-form-field .required {
    color: #e53e3e;
}

.brap-form-field input[type="text"],
.brap-form-field input[type="email"],
.brap-form-field input[type="tel"],
.brap-form-field input[type="url"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.brap-form-field input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

#autocomplete-wrapper {
    width: 100%;
}

/* Address autocomplete input */
.brap-address-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
    font-family: inherit;
}

.brap-address-input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* Address autocomplete dropdown */
#autocomplete-wrapper {
    position: relative;
}

.brap-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    z-index: 9999;
    max-height: 220px;
    overflow-y: auto;
}

.brap-autocomplete-item {
    padding: 10px 12px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.brap-autocomplete-item:last-child {
    border-bottom: none;
}

.brap-autocomplete-item:hover {
    background: #f0f4fb;
}

.brap-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.brap-submit-btn:hover {
    background: #357abd;
}

.brap-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.brap-message {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.brap-message.brap-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.brap-message.brap-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    #business-registration-container {
        padding: 10px;
    }

    .brap-form {
        padding: 30px 20px;
    }

    .brap-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .brap-form h2 {
        font-size: 24px;
    }
}
