.instagram-oauth-container {
    margin: 10px 0;
}

.instagram-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.instagram-login-btn:hover {
    background: linear-gradient(45deg, #e0852e 0%,#d55a35 25%,#d0243c 50%,#c01f5f 75%,#b0167a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.instagram-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(225, 48, 108, 0.3);
}

.instagram-icon {
    flex-shrink: 0;
}

.instagram-login-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.instagram-login-btn:disabled:hover {
    background: #9ca3af;
    transform: none;
    box-shadow: none;
}
