/**
 * WaveReseller Frontend Styles
 * Styles for the block-based reseller signup form
 */

.reseller-signup-form-container {
    margin: 0 auto;
    padding: 2rem;
}

.reseller-form-fields {
    margin-top: 2rem;
}

.reseller-messages {
    margin-bottom: 1.5rem;
}

.reseller-success-message {
    background: #d4edda !important;
    color: #155724 !important;
    border: 1px solid #c3e6cb !important;
    padding: 1rem !important;
    border-radius: 4px !important;
    margin-bottom: 1.5rem !important;
    display: none; /* Hidden by default */
}

.reseller-error-message {
    background: #f8d7da !important;
    color: #721c24 !important;
    border: 1px solid #f5c6cb !important;
    padding: 1rem !important;
    border-radius: 4px !important;
    margin-bottom: 1.5rem !important;
    display: none; /* Hidden by default */
}

.reseller-input-block {
    margin-bottom: 1.5rem;
}

.reseller-input-block label {
    display: block;
    margin-bottom: 0.5rem;
}

.reseller-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.reseller-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.reseller-submit-block {
    margin-top: 2rem;
}

#reseller-submit-button {
    cursor: pointer;
    text-decoration: none;
}

#reseller-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .reseller-signup-form-container {
        padding: 1rem;
    }
}
