/* 
═══════════════════════════════════════════════════════════════════════════
این استایل‌ها رو به فایل login.css اضافه کن
═══════════════════════════════════════════════════════════════════════════
*/

/* Resend Options Container */
.resend-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.5rem;
}

/* Call Button */
.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-call:hover:not(:disabled) {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.btn-call:active:not(:disabled) {
    transform: translateY(0);
}

.btn-call:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-call.loading {
    pointer-events: none;
}

.btn-call.loading .btn-text {
    opacity: 0;
}

.btn-call i {
    font-size: 1rem;
}

/* Resend Button Update */
.btn-resend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #818cf8;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-resend:hover:not(:disabled) {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
}

/* Hidden class */
.hidden {
    display: none !important;
}

/* Animation for buttons appearing */
.btn-resend:not(.hidden),
.btn-call:not(.hidden) {
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
