/* Global Button Styles */

.submit-button {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #7c3aed 100%);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(124, 58, 237, 0.25);
    height: 44px;
}

.submit-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(124, 58, 237, 0.35);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button.loading {
    position: relative;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Secondary Button */
.secondary-button {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: block;
    padding: 12px 24px;
    background: #ececec;
    border: 1px solid #ececec;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #5c5c5c;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    height: 44px;
}

.secondary-button:hover {
    background: #e2e2e2;
    border-color: #d1d1d1;
}

.secondary-button:active {
    background: #d9d9d9;
}
